home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cchh01.arc / M8086.H < prev    next >
Text File  |  1986-03-14  |  546b  |  24 lines

  1. /**
  2. *
  3. * The following definitions specify which memory addressing model is in use
  4. * for wacky chips of the Intel 8086 variety.
  5. *
  6. *    I8086S        64K program, 64K data
  7. *    I8086D        64K program, 1M data
  8. *    I8086P        1M program, 64K data
  9. *    I8086L        1M program, 1M data
  10. *
  11. */
  12. #define I8086S 1
  13.  
  14. /**
  15. *
  16. * The following definitions indicate which type of integer has the same size
  17. * as a pointer.
  18. *
  19. *    SPTR   (s,p)    defined if sizeof(pointer) == sizeof(short int)
  20. *    LPTR   (d,l)    defined if sizeof(pointer) == sizeof(long int)
  21. *
  22. */
  23. #define SPTR 1
  24.